home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / DU Folder / Sample3 / Sources / Include / Constant.h next >
Encoding:
Text File  |  1995-10-11  |  730 b   |  25 lines  |  [TEXT/MPS ]

  1. //    Copyright © 1995 Apple Computer, Inc. All rights reserved.
  2. //    Release Version:    $ 1.0 d11 $
  3.  
  4. #ifndef CONSTANT_H
  5. #define CONSTANT_H
  6.  
  7. //=====================================================================
  8. // ----- OS Includes -----
  9. #ifndef FWMNUITM_H
  10. #include "FWMnuItm.h"        // FW_kFirstUserCommandID
  11. #endif
  12.  
  13. // ----- OpenDoc Includes -----
  14. #ifndef _ODTYPES_
  15. #include <ODTypes.h>
  16. #endif
  17.  
  18. //=====================================================================
  19. const ODCommandID cGreetingCommand        = FW_kFirstUserCommandID;
  20. const ODCommandID cGoodbyeCommand        = FW_kFirstUserCommandID + 1;
  21. const ODCommandID cTestCommand            = FW_kFirstUserCommandID + 2;
  22.  
  23.  
  24. //=====================================================================
  25. #endif